-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.32 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "rollup-plugin-string-import",
"version": "1.2.6",
"description": "Import any file as a string",
"main": "dist/index.js",
"repository": "git@github.com:ExposedCat/rollup-plugin-string-import.git",
"author": "Artem Prokop <artem.prokop.dev@gmail.com>",
"license": "GPL-3.0-or-later",
"private": false,
"devDependencies": {
"@stylistic/eslint-plugin": "^2.3.0",
"@tsconfig/recommended": "^1.0.7",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-functional": "^6.6.0",
"eslint-plugin-github": "^5.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-sonarjs": "^1.0.3",
"prettier": "^3.3.2",
"prettier-eslint": "^16.3.0",
"typescript": "^5.5.2"
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"start": "npm run build && node .",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [
"rollup",
"string",
"import",
"typescript",
"plugin"
],
"type": "module",
"dependencies": {
"@rollup/pluginutils": "^5.1.0"
},
"peerDependencies": {
"rollup": ">=1.20.0"
},
"files": [
"dist/*"
]
}