-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 848 Bytes
/
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
{
"name": "create-digdir-tokens",
"version": "0.0.1",
"description": "CLI tool to create an initial token structure for Designsystemet",
"author": "Une Sofie Kinn Ekroll <[email protected]>",
"license": "ISC",
"type": "module",
"main": "index.js",
"bin": "index.js",
"scripts": {
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"typecheck": "tsc"
},
"dependencies": {
"change-case": "^5.4.4",
"kleur": "^3.0.3",
"prompts": "^2.4.2",
"tsx": "^4.11.0"
},
"devDependencies": {
"@eslint/js": "^8.56.0",
"@tokens-studio/types": "^0.4.0",
"@tsconfig/node20": "^20.1.4",
"@types/prompts": "^2.4.9",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.11.0"
}
}