-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.46 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
{
"name": "@badrap/material-symbols-omnibus",
"version": "0.0.7",
"type": "module",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/badrap/material-symbols-omnibus.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"exports": "./dist/index.js",
"files": [
"src",
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "eslint --max-warnings 0 .",
"typecheck": "tsc --skipLibCheck --noEmit",
"build": "rm -rf dist/* && tsc -p ./tsconfig.build.json",
"generate": "rm -rf data/* && node --loader ts-node/esm scripts/generate.ts > src/_data.ts",
"prepack": "npm run build",
"changeset": "changeset",
"bump": "changeset version",
"release": "changeset publish"
},
"author": "Joachim Viide <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/badrap/material-symbols-omnibus/issues"
},
"homepage": "https://github.com/badrap/material-symbols-omnibus#readme",
"devDependencies": {
"@badrap/valita": "^0.3.8",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}