forked from nclsndr/design-tokens-format-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 818 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": "design-tokens-format-module",
"description": "A Typescript implementation of the Design Tokens Format Module specification",
"keywords": [
"design token format module",
"design tokens",
"design system",
"dtcg"
],
"version": "0.9.9",
"homepage": "https://github.com/nclsndr/design-tokens-format-module",
"license": "MIT",
"author": "Nico Andre<[email protected]>",
"type": "module",
"scripts": {
"test": "tsc -p tests/tsconfig.json || true && vitest",
"build": "rm -rf dist && tsc --build",
"tsc": "tsc"
},
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"devDependencies": {
"@types/node": "^20.14.10",
"@vitest/coverage-v8": "^1.6.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vitest": "^1.6.0"
}
}