-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.19 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
{
"name": "moonspace-image-editor",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "husky",
"image-editor": "pnpm --filter image-editor",
"js-demo": "pnpm --filter js-demo",
"react-demo": "pnpm --filter react-demo",
"publish": "pnpm changeset publish --access public"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.10.0",
"engines": {
"node": ">=22.15.0"
},
"type": "module",
"devDependencies": {
"@changesets/cli": "^2.29.3",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/js": "^9.26.0",
"@types/node": "^22.15.15",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.3",
"eslint-plugin-prettier": "^5.4.0",
"globals": "^16.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0"
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --fix"
],
"**/*": "prettier --write --ignore-unknown"
}
}