-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.59 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@design-sync/json-plugin",
"version": "0.3.3",
"description": "Transforms design tokens to flat json structure",
"repository": "salamaashoush/design-sync",
"license": "MIT",
"sideEffects": false,
"type": "module",
"private": false,
"main": "src/index.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "npm run build -- --watch",
"lint": "oxlint --import-plugin --deny-warnings && prettier -c src",
"lint:fix": "oxlint --import-plugin --deny-warnings --fix && prettier -c src -w",
"prepack": "pnpm run build",
"release": "pnpm test && pnpm publish",
"test": "pnpm lint && pnpm test:types && vitest run --coverage",
"test:types": "tsc --noEmit --skipLibCheck"
},
"dependencies": {
"@design-sync/manager": "workspace:*",
"@design-sync/utils": "workspace:*",
"@design-sync/w3c-dtfm": "workspace:*"
},
"devDependencies": {
"@design-sync/tsconfig": "workspace:*",
"@types/node": "^20.14.2",
"@vitest/coverage-v8": "^1.6.0",
"oxlint": "^0.4.2",
"prettier": "^3.3.1",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"vitest": "^1.6.0"
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
}