-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.01 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.01 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
58
59
60
{
"name": "nano_kit",
"type": "module",
"private": true,
"version": "0.0.0",
"description": "A small Direct DOM library for creating user interfaces.",
"author": "dangreen",
"license": "MIT",
"funding": "https://ko-fi.com/dangreen",
"repository": {
"type": "git",
"url": "https://github.com/TrigenSoftware/nano_kit.git"
},
"bugs": {
"url": "https://github.com/TrigenSoftware/nano_kit/issues"
},
"engines": {
"node": ">=16"
},
"scripts": {
"clear": "pnpm -r --parallel --if-present clear",
"build": "pnpm -r --parallel --filter './packages/*' build",
"lint": "pnpm -r --parallel --if-present --filter './packages/*' lint",
"test:unit": "pnpm -r --parallel --if-present --filter './packages/*' test:unit",
"test:size": "pnpm -r --parallel --if-present --filter './packages/*' test:size",
"test:types": "pnpm -r --parallel --if-present --filter './packages/*' test:types",
"test": "run -p lint test:unit test:types",
"docs:build": "pnpm -r --parallel --filter './website' build",
"commit": "cz",
"updateGitHooks": "simple-git-hooks"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/config-pnpm-scopes": "^19.8.1",
"@commitlint/cz-commitlint": "^19.8.1",
"@nano_kit/query": "workspace:^",
"@nano_kit/react": "workspace:^",
"@nano_kit/react-router": "workspace:^",
"@nano_kit/router": "workspace:^",
"@nano_kit/store": "workspace:^",
"@nanoviews/storybook-vite": "workspace:^",
"@trigen/eslint-config": "^8.3.0",
"@trigen/scripts": "^8.0.4",
"@types/node": "^24.0.14",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"clean-publish": "^6.0.0",
"commitizen": "^4.2.4",
"del-cli": "^6.0.0",
"eslint": "^9.31.0",
"kida": "workspace:^",
"nano-staged": "^0.9.0",
"nanoviews": "workspace:^",
"react": "catalog:",
"react-dom": "catalog:",
"simple-git-hooks": "^2.7.0",
"typescript": "^5.8.3"
}
}