-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.72 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.72 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
62
63
64
65
{
"name": "@flock/black-sun",
"version": "0.2.0",
"description": "the design system of Flock.",
"type": "module",
"exports": {
".": {
"default": "./build/js/colors.js"
}
},
"files": [
"build"
],
"scripts": {
"build": "node ./scripts/buildTokens.js",
"clean:build": "rimraf build",
"format": "run-p format:*",
"format:eslint": "eslint --ignore-path .gitignore --fix .",
"format:prettier": "prettier --ignore-unknown --ignore-path .gitignore --write .",
"lint": "run-p lint:*",
"lint:eslint": "eslint --ignore-path .gitignore .",
"lint:prettier": "prettier --ignore-unknown --ignore-path .gitignore --check .",
"prepare": "husky install",
"prepublishOnly": "npm run clean:build && npm start",
"start": "npm run build",
"test": "run-p test:*",
"test:integration": "mocha \"./tests/*.test.js\"",
"test:unit": "mocha \"./src/**/*.test.js\""
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.js": "eslint --cache --fix",
"*.json": "sort-json"
},
"prettier": {
"plugins": [
"prettier-plugin-packagejson"
]
},
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/eslint__js": "^8.42.3",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.5",
"chai": "^5.1.2",
"eslint": "^9.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mocha": "^11.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.5.0",
"rimraf": "^5.0.5",
"sort-json": "^2.0.1",
"sort-package-json": "^2.10.0",
"style-dictionary": "^4.3.0",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
}
}