-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.82 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.82 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
{
"name": "design-tokens",
"version": "0.19.0",
"files": [
"build"
],
"type": "module",
"node": "22",
"scripts": {
"build": "npm run clean && npm run lint && tsc && npm run build:dictionary",
"build:dictionary": "style-dictionary build --config serp-style-dictionary.config.js && style-dictionary build --config static-pages-dictionary.config.js && style-dictionary build --config desktop-browsers-dictionary.config.js && style-dictionary build --config duckai-style-dictionary.config.js",
"clean": "rm -rf dist && rm -rf build",
"lint": "eslint src scripts serp-style-dictionary.config.js static-pages-dictionary.config.js desktop-browsers-dictionary.config.js duckai-style-dictionary.config.js && prettier src scripts serp-style-dictionary.config.js static-pages-dictionary.config.js desktop-browsers-dictionary.config.js duckai-style-dictionary.config.js --check",
"lint:fix": "eslint src scripts serp-style-dictionary.config.js static-pages-dictionary.config.js desktop-browsers-dictionary.config.js duckai-style-dictionary.config.js --fix && prettier src scripts serp-style-dictionary.config.js static-pages-dictionary.config.js desktop-browsers-dictionary.config.js duckai-style-dictionary.config.js --write",
"test": "test"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@duckduckgo/eslint-config": "github:duckduckgo/eslint-config",
"@types/node": "^24.10.1",
"commander": "^14.0.2",
"es-toolkit": "^1.42.0",
"eslint": "^9.20.1",
"prettier": "^3.5.1",
"style-dictionary": "^4.3.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1"
},
"prettier": {
"singleQuote": true,
"printWidth": 140,
"tabWidth": 4
}
}