-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.07 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
{
"name": "nurl",
"version": "0.0.0",
"description": "Nurl open source tools to help developers build and create new extensions for anyone to use.",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"lint:js": "eslint --max-warnings=0 --ext .js,.ts,.tsx .",
"lint:ts": "tsc --noEmit",
"prepare": "husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-solid": "^0.14.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"solid-js": "^1.8.15",
"typescript": "^5.5.2"
},
"peerDependencies": {
"solid-js": "*",
"typescript": "^5.5.2"
},
"lint-staged": {
"*.{ts,tsx,js}": "eslint --cache --fix",
"*.{ts,tsx,js,cjs,md}": "prettier --write"
},
"keywords": [
"nurl",
"ttrpg",
"dnd",
"pathfinder",
"warhammer",
"ttrpg",
"solid-js",
"typescript",
"dev",
"tools",
"nurl dev tools"
]
}