-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
49 lines (49 loc) · 1.52 KB
/
package.json
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
{
"name": "iitc-plugins",
"version": "1.0.0",
"author": "jaiperdu",
"description": "IITC plugins by jaiperdu",
"license": "ISC",
"homepage": "https://github.com/le-jeu/iitc-plugins#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/le-jeu/iitc-plugins.git"
},
"keywords": [
"iitc"
],
"type": "module",
"private": true,
"scripts": {
"build": "npm run build:local",
"build:local": "python3 build_plugin.py --out-dir dist local plugins/*.js",
"build:lejeu": "python3 build_plugin.py --out-dir dist lejeu plugins/*.js",
"rollup": "npm run rollup:local",
"rollup:local": "rollup -c --environment BUILD:local",
"rollup:lejeu": "rollup -c --environment BUILD:lejeu",
"lint": "npm run lint:check",
"lint:check": "eslint plugins",
"lint:fix": "eslint plugins --fix",
"format": "npm run format:check",
"format:check": "prettier --check *.js *.json",
"format:fix": "prettier --write *.js *.json"
},
"bugs": {
"url": "https://github.com/le-jeu/iitc-plugins/issues"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"postcss": "^8.4.12",
"postcss-url": "^10.1.3",
"prettier": "^2.7.1",
"rollup": "^2.58.3",
"rollup-plugin-postcss": "^4.0.1",
"tslib": "^2.4.0"
}
}