forked from sbb-design-systems/lyne-design-tokens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.15 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
81
82
83
{
"name": "@sbb-esta/lyne-design-tokens",
"version": "1.2.0",
"description": "Managing and publishing design tokens for the lyne design system: https://github.com/sbb-design-systems/lyne-components",
"scripts": {
"build": "tsx ./build.ts",
"format": "prettier \"**/*\" --write --ignore-unknown",
"lint": "eslint",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sbb-design-systems/lyne-design-tokens.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sbb-design-systems/lyne-design-tokens/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/sbb-design-systems/lyne-design-tokens#readme",
"files": [
"dist/"
],
"devDependencies": {
"@commitlint/cli": "19.4.1",
"@commitlint/config-conventional": "19.4.1",
"@eslint/js": "9.9.1",
"@types/node": "20.16.3",
"eslint": "9.9.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-yml": "1.14.0",
"globals": "15.9.0",
"husky": "9.1.5",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"style-dictionary": "3.9.2",
"tsx": "4.19.0",
"typescript": "5.5.4",
"typescript-eslint": "8.3.0"
},
"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",
"style": "./dist/sbb-variables.css",
"default": "./dist/js/sbb-tokens.mjs"
},
"./dist/js/*": {
"default": "./dist/js/*"
},
"./package.json": {
"default": "./package.json"
},
"./dist/scss/*": {
"sass": "./dist/scss/*"
},
"./dist/css/*": {
"style": "./dist/sbb-variables.css"
}
},
"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"
]
}
}