-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.38 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
{
"author": "Niche",
"bugs": {
"url": "https://github.com/nicheinc/expedite-tokens/issues"
},
"description": "Design Tokens for the Expedite Design System",
"devDependencies": {
"@eslint/js": "^9.18.0",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-file-progress": "^3.0.1",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"engines": {
"node": ">=16.14.2 <=22.13.0",
"npm": ">=8.5.0 <=11.0.0"
},
"files": [
"dist"
],
"homepage": "https://github.com/nicheinc/expedite-tokens#readme",
"keywords": [
"niche",
"design-tokens",
"expedite"
],
"license": "MIT",
"main": "dist/index.js",
"name": "@nicheinc/expedite-tokens",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"build": "rm -rf ./dist && tsc -p tsconfig.build.json && node ./scripts/generateLessTokens.js",
"prepublishOnly": "npm i --package-lock-only && npm run build",
"lint": "eslint -c eslint.config.mjs --fix"
},
"types": "dist/index.d.ts",
"version": "2.4.1"
}