-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.32 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
{
"name": "@digitalservice4germany/style-dictionary",
"version": "2.0.0",
"description": "Keep styles consistent and synchronized across multiple platforms.",
"scripts": {
"clean": "rimraf dist",
"build": "ts-node build.ts && npm run ts-types",
"ts-types": "tsc --emitDeclarationOnly --esModuleInterop --module nodenext --moduleResolution nodenext --target es2015 -d --allowJs ./dist/tailwind/index.js",
"lint": "eslint . --ext .ts",
"postversion": "cp package.json LICENSE README.md ./dist/",
"test": "jest test/*"
},
"keywords": [],
"author": "Joschka de Cuveland <[email protected]>",
"homepage": "https://digitalservicebund.github.io/style-dictionary/",
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/lodash": "^4.17.0",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"lefthook": "^1.6.7",
"lodash": "^4.17.21",
"prettier": "^2.8.8",
"rimraf": "^5.0.5",
"style-dictionary": "^3.9.2",
"tiny-invariant": "^1.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"yaml": "^2.4.1"
},
"volta": {
"node": "18.15.0"
}
}