-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
63 lines (63 loc) · 1.84 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
59
60
61
62
63
{
"name": "style-dictionary-utils",
"version": "4.0.3",
"type": "module",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/lukasoppermann/style-dictionary-utils.git"
},
"description": "Utilities to use in your style dictionary config",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist/*"
],
"scripts": {
"test": "npm run build && npx vitest run && npm run lint",
"test:build": "npm run build && node ./tests/build.mjs",
"lint": "npx eslint . --ext .ts",
"lint:fix": "npx eslint . --ext .ts --fix",
"lint:report": "npx eslint --output-file eslint_report.json --format json src",
"format": "prettier --check '**/*.{js,jsx,ts,tsx,md,mdx,css}'",
"format:fix": "prettier --write '**/*.{js,jsx,ts,tsx,md,mdx,css}'",
"clean:dist": "rm -rf dist/",
"prebuild": "npm run clean:dist",
"build": "tsc",
"preversion": "npm run build && npm run test",
"postversion": "git push --follow-tags && npm publish",
"postpublish": "npm i -D style-dictionary-utils@latest"
},
"keywords": [
"design token",
"style dictionary",
"design system"
],
"author": "Lukas Oppermann",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukasoppermann/style-dictionary-utils/issues"
},
"homepage": "https://github.com/lukasoppermann/style-dictionary-utils#readme",
"dependencies": {
"color2k": "^2.0.3"
},
"devDependencies": {
"@github/prettier-config": "^0.0.6",
"@types/node": "^22.2.0",
"eslint": "^8.57.0",
"eslint-plugin-github": "^5.0.2",
"prettier": "^3.3.3",
"style-dictionary": "^4.0.1",
"style-dictionary-utils": "^4.0.0",
"typescript": "^5.5.2",
"vitest": "^2.0.4"
},
"peerDependencies": {
"style-dictionary": "^4"
}
}