-
Notifications
You must be signed in to change notification settings - Fork 195
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.96 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.96 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
61
{
"name": "@nipple/root",
"private": true,
"version": "0.0.0",
"description": "Root of NippleJS.",
"author": "Yoann Moinet <yo@nnmoi.net> (https://yoannmoi.net)",
"license": "MIT",
"homepage": "https://yoannmoinet.github.io/nipplejs",
"repository": {
"type": "git",
"url": "git://github.com/yoannmoinet/nipplejs.git"
},
"bugs": {
"url": "https://github.com/yoannmoinet/nipplejs/issues"
},
"workspaces": [
"packages/*"
],
"volta": {
"node": "24.0.0",
"yarn": "1.22.19"
},
"scripts": {
"_nipplejs": "yarn workspace nipplejs",
"build": "yarn _nipplejs build",
"clean": "yarn _nipplejs clean",
"cli": "yarn workspace @nipple/tools cli",
"dev": "yarn watch",
"format": "yarn lint --fix",
"format-files": "eslint ${0} --quiet --fix",
"lint": "ESLINT_USE_FLAT_CONFIG=true eslint",
"playwright": "yarn workspace @nipple/tests playwright",
"typecheck": "yarn workspaces foreach -Apti run typecheck",
"version": "yarn _nipplejs version --deferred ${0} && yarn version apply --all",
"watch": "yarn _nipplejs watch"
},
"husky": {
"hooks": {
"pre-commit": "DISABLE_SPINNER=true lint-staged"
}
},
"devDependencies": {
"@types/node": "^22",
"@types/web": "0.0.206",
"@typescript-eslint/eslint-plugin": "7.5.0",
"@typescript-eslint/parser": "7.5.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-node": "0.3.9",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-arca": "0.16.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"globals": "16.0.0",
"husky": "4.2.5",
"lint-staged": "10.2.0",
"prettier": "3.2.5",
"typescript": "5.4.3"
},
"packageManager": "yarn@4.13.0"
}