-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1023 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
36
37
{
"name": "@udt/dtcg-parser",
"private": true,
"version": "0.0.3",
"description": "A library for parsing DTCG design token files to a Token Object Model (TOM) representation",
"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": [
"design tokens",
"parser",
"read",
"load",
"tom",
"dtcg"
],
"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/tree/master/packages/dtcg-parser#readme",
"dependencies": {
"@udt/parser-utils": "^0.3.0",
"@udt/tom": "^0.0.0"
}
}