-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2.43 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
{
"name": "@runroom/design-tokens",
"version": "6.0.2",
"description": "Figma design tokens",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Runroom/design-tokens.git"
},
"keywords": [
"figma",
"designtokens",
"runroom"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Runroom/design-tokens/issues"
},
"homepage": "https://github.com/Runroom/design-tokens",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"bin": {
"design-tokens": "dist/bin/index.js"
},
"scripts": {
"build": "tsc -noEmit && tsup",
"dev": "tsc -noEmit && tsup --sourcemap",
"design-tokens": "npm run dev && node dist/bin/index.js",
"lint": "run-p lint:*",
"lint:eslint": "eslint src/**/*.ts tests/**/*.ts tsup.config.ts",
"lint:prettier": "prettier --check src/**/*.ts tests/**/*.ts .github .eslintrc.json .prettierrc.json package.json .template-designtokensrc.json tsup.config.ts tsconfig.json",
"fix": "run-p fix:*",
"fix:eslint": "eslint --fix src/**/*.ts tests/**/*.ts tsup.config.ts",
"fix:prettier": "prettier --write src/**/*.ts tests/**/*.ts .github .eslintrc.json .prettierrc.json package.json .template-designtokensrc.json tsup.config.ts tsconfig.json",
"release": "changeset publish",
"test": "jest",
"test:ci": "jest --ci --coverage"
},
"engines": {
"node": ">= 16"
},
"dependencies": {
"cosmiconfig": "9.0.0",
"node-fetch": "3.3.2",
"style-dictionary": "3.9.0",
"yargs-parser": "21.1"
},
"devDependencies": {
"@changesets/changelog-github": "0.4",
"@changesets/cli": "2.26.2",
"@swc/core": "1.3.96",
"@swc/jest": "0.2.29",
"@types/jest": "29.5.8",
"@types/node": "20.9.0",
"@types/yargs-parser": "21.0.3",
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.11.0",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-jest": "27.6.0",
"jest": "29.7.0",
"npm-run-all": "4.1.5",
"prettier": "3.1.0",
"ts-node": "10.9.1",
"tsup": "7.2.0",
"typescript": "5.2.2"
}
}