-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 968 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
32
33
34
35
{
"name": "@udt/dtcg2csv",
"private": "true",
"version": "0.0.3",
"description": "A CLI utility for exporting tokens and groups from DTCG files to records in a CSV file.",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"scripts": {
"clean": "del-cli dist/*",
"build": "tsc -p tsconfig.build.json",
"watch": "tsc -p tsconfig.build.json --watch",
"test": "vitest run --coverage --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/universal-design-tokens/udt.git"
},
"keywords": [
"dtcg",
"cli",
"csv"
],
"author": "James Nash (https://cirrus.twiddles.com/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/universal-design-tokens/udt/issues"
},
"homepage": "https://github.com/universal-design-tokens/udt#readme",
"dependencies": {
"@udt/dtcg-parser": "^0.0.3",
"@udt/tom": "^0.0.0",
"csv-stringify": "^6.5.2"
}
}