-
Notifications
You must be signed in to change notification settings - Fork 127
/
package.json
44 lines (44 loc) · 1.28 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
{
"name": "@sumup-oss/design-tokens",
"version": "8.0.1",
"description": "Visual primitives such as typography, color, and spacing that are shared across platforms.",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"types": "dist/es/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"*.css"
],
"repository": {
"type": "git",
"directory": "packages/design-tokens",
"url": "git+https://github.com/sumup-oss/circuit-ui.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sumup-oss/circuit-ui/issues"
},
"homepage": "https://github.com/sumup-oss/circuit-ui/tree/main/packages/design-tokens/README.md",
"scripts": {
"start": "tsc --watch",
"build": "npm run build:es && npm run build:cjs && npm run build:styles",
"build:es": "tsc",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:styles": "tsx ./scripts/build.ts",
"lint": "foundry run eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"test": "vitest"
},
"dependencies": {
"browserslist": "^4.24.2",
"lightningcss": "^1.28.2",
"prop-types": "^15.8.1"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@types/prop-types": "^15.7.13",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}