-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 2 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
{
"name": "@tokens-studio/types",
"version": "0.5.2",
"description": "",
"license": "MIT",
"author": "Joren Broekema <joren.broekema@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/tokens-studio/types.git"
},
"type": "module",
"exports": {
".": {
"import": "./dist/types/index.js",
"require": "./dist/types/index.cjs",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && run-p 'build:*'",
"build:js": "rollup -c rollup.config.js",
"build:types": "tsc --emitDeclarationOnly --declaration",
"docs": "typedoc",
"format": "npm run format:eslint && npm run format:prettier",
"format:eslint": "eslint --ext .ts,.js,.html . --fix",
"format:prettier": "prettier \"**/*.{ts,js,md,json}\" --write",
"lint": "run-p lint:*",
"lint:eslint": "eslint --ext .ts,.html .",
"lint:prettier": "prettier \"**/*.ts\" --list-different || (echo '↑↑ these files are not prettier formatted ↑↑' && exit 1)",
"lint:types": "tsc --noEmit",
"prepare": "husky install",
"release": "npm run build && changeset publish"
},
"types": "./dist/types/index.d.ts",
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@open-wc/eslint-config": "^9.2.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"prettier-package-json": "^2.8.0",
"rimraf": "^5.0.0",
"rollup": "^3.20.2",
"typedoc": "^0.26.3",
"typescript": "^5.5.3"
},
"keywords": [
"design tokens",
"figma",
"style-dictionary",
"tokens studio",
"types"
],
"prettier": {
"printWidth": 100,
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "all"
}
}