forked from sbb-design-systems/lyne-design-tokens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.17 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@sbb-esta/lyne-design-tokens",
"version": "0.4.3",
"description": "Managing and publishing design tokens for the lyne design system: https://github.com/lyne-design-system/lyne-components",
"scripts": {
"build": "tsx ./build.ts",
"format": "prettier \"**/*\" --write --ignore-unknown",
"lint": "npm run lint:yml && npm run lint:js",
"lint:js": "eslint \"**/*.{js,ts}\"",
"lint:yml": "eslint \"**/*.{yml,yaml}\"",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lyne-design-system/lyne-design-tokens.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lyne-design-system/lyne-design-tokens/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/lyne-design-system/lyne-design-tokens#readme",
"files": [
"dist/"
],
"devDependencies": {
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"@types/node": "20.12.3",
"@typescript-eslint/eslint-plugin": "7.5.0",
"@typescript-eslint/parser": "7.5.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-yaml": "0.5.0",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"prettier": "3.2.5",
"style-dictionary": "3.9.2",
"tsx": "4.7.1",
"typescript": "5.4.3"
},
"main": "./dist/js/sbb-tokens.cjs",
"module": "./dist/js/sbb-tokens.mjs",
"typings": "./dist/js/sbb-tokens.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/js/sbb-tokens.d.ts",
"sass": "./dist/scss/sbb-variables.scss",
"node": "./dist/js/sbb-tokens.mjs",
"require": "./dist/js/sbb-tokens.cjs",
"default": "./dist/js/sbb-tokens.mjs"
},
"./dist/js/*": {
"default": "./dist/js/*"
},
"./package.json": {
"default": "./package.json"
},
"./dist/scss/*": {
"sass": "./dist/scss/*"
}
},
"prettier": {
"singleQuote": true,
"endOfLine": "lf",
"printWidth": 100
},
"lint-staged": {
"*.{js,ts,css,scss,json,md,html,yaml,yml}": [
"prettier --write"
],
"*.{js,ts,yaml,yml}": [
"eslint --fix"
]
}
}