-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@tokens-studio/resolver-spec",
"private": true,
"version": "0.0.0",
"description": "DTCG draft for token sets & themes resolution",
"keywords": [
"design",
"tokens",
"DTCG",
"Design Token Community Group",
"themes",
"theming",
"resolver"
],
"type": "module",
"scripts": {
"build": "tsc --emitDeclarationOnly",
"docs:start": "astro dev --root ./docs",
"docs:build": "astro check --root ./docs && astro build --root ./docs",
"docs:preview": "astro preview --root ./docs",
"format": "run-p format:*",
"format:prettier": "prettier \"**/*.{ts,js,json,md,mdx}\" \"package.json\" --write",
"lint": "run-p lint:*",
"lint:prettier": "prettier \"**/*.{ts,js,json,md,mdx}\" \"package.json\" --list-different || (echo '↑↑ these files are not prettier formatted ↑↑' && exit 1)",
"lint:types": "tsc --noEmit",
"prepare": "husky"
},
"lint-staged": {
"*.{js,json,md,mdx}": "prettier --list-different"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "always",
"trailingComma": "all",
"printWidth": 100
},
"repository": {
"type": "git",
"url": "git://github.com/tokens-studio/resolver-spec.git"
},
"author": "Amazon",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tokens-studio/resolver-spec/issues"
},
"homepage": "https://github.com/tokens-studio/resolver-spec",
"devDependencies": {
"@astrojs/check": "^0.8.1",
"@astrojs/starlight": "^0.25.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@tokens-studio/sd-transforms": "^1.2.7",
"@tokens-studio/types": "^0.5.1",
"astro": "^4.11.5",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"lit": "^3.2.1",
"mermaid": "^10.9.1",
"monaco-editor": "^0.52.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"style-dictionary": "^4.1.4",
"typescript": "^5.5.3"
}
}