-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.6 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.6 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
52
53
54
55
56
57
{
"name": "charity-example-plugin",
"version": "0.1.0-beta",
"description": "This is an example description! Tell everyone what your plugin is about!",
"author": "Me!",
"license": "MIT",
"private": true,
"sideEffects": true,
"engines": {
"node": ">=18"
},
"scripts": {
"dev:rollup": "rollup -wc",
"dev:serve": "serve dist -C -L -n -l 5417",
"dev": "cross-env NODE_ENV=development run-p dev:rollup dev:serve",
"clean": "del-cli dist",
"format": "prettier --write .",
"lint": "prettier --check . && eslint",
"ci": "run-s lint",
"build:js": "rollup -c",
"build": "cross-env NODE_ENV=production run-s ci clean build:js"
},
"devDependencies": {
"@placecharity/framework-types": "^0.1.0-beta7",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.2",
"@types/bun": "latest",
"@types/eslint": "^9.6.1",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"cross-env": "^10.0.0",
"del-cli": "^6.0.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"lint-staged": "^16.1.5",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"read-package-up": "^11.0.0",
"rollup": "^4.46.4",
"rollup-plugin-esbuild": "^6.2.1",
"serve": "^14.2.4",
"tslib": "^2.8.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.css": [
"prettier --write"
]
}
}