forked from nclsndr/design-tokens-format-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 829 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
{
"name": "@trufflehq/design-tokens-format-module",
"description": "A Typescript implementation of the Design Tokens Format Module specification",
"version": "0.8.2",
"homepage": "https://github.com/nclsndr/design-tokens-format-module",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"author": "Nico Andre <hello@nclsndr.com>",
"type": "module",
"scripts": {
"test": "vitest",
"build": "tsc --build"
},
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./types": "./dist/types.js"
},
"dependencies": {
"dlv": "^1.1.3",
"zod": "^3.19.1"
},
"devDependencies": {
"@types/dlv": "^1.1.2",
"@types/node": "^18.8.3",
"@vitest/coverage-c8": "^0.24.1",
"prettier": "^2.7.1",
"typescript": "^4.8.4",
"vitest": "^0.24.0"
}
}