-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.47 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.47 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
{
"name": "script",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git://github.com/WindrunnerMax/TKScript"
},
"scripts": {
"dev": "npm run dev:scripts",
"build": "npm run build:scripts",
"dev:scripts": "rollup -c --watch",
"build:scripts": "./publish-scripts.sh",
"dev:force-copy": "pnpm --filter force-copy run dev",
"build:force-copy": "pnpm --filter force-copy run build",
"dev:force-copy:gecko": "pnpm --filter force-copy run dev:gecko",
"build:force-copy:gecko": "pnpm --filter force-copy run build:gecko",
"lint:es": "eslint --fix --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore .",
"lint:ts": "pnpm --filter '*' run lint:ts"
},
"author": "Czy",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "20.0.0",
"@rollup/plugin-node-resolve": "13.0.4",
"@rollup/plugin-replace": "5.0.2",
"@types/node": "20.8.0",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"cross-env": "7.0.3",
"esbuild": "0.15.10",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.27.0",
"eslint-plugin-react-hooks": "4.3.0",
"postcss": "8.3.11",
"prettier": "2.3.2",
"rollup": "2.56.3",
"rollup-plugin-esbuild": "4.10.1",
"rollup-plugin-postcss": "4.0.1",
"rollup-plugin-userscript-metablock": "0.3.1",
"tslib": "2.6.2",
"typescript": "4.6.2"
}
}