-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.78 KB
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
75
76
77
78
79
80
{
"name": "@stackoverflow/stacks-icons",
"description": "The icon library for Stack Overflow, Stack Overflow Careers, and the Stack Exchange Network.",
"version": "7.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/StackExchange/Stacks-Icons.git"
},
"license": "Apache-2.0",
"type": "module",
"main": "dist/index.umd.cjs",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.umd.cjs",
"default": "./dist/index.esm.js"
},
"./icons": "./dist/icons.js",
"./spots": "./dist/spots.js",
"./src/Icon/*": "./src/Icon/*",
"./src/Spot/*": "./src/Spot/*",
"./dist/Icon/*": "./dist/lib/Icon/*",
"./dist/Spot/*": "./dist/lib/Spot/*",
"./dist/icons.css": "./dist/icons.css",
"./manifest": "./dist/manifest.json"
},
"files": [
"dist/**/*",
"src/**/*"
],
"sideEffects": false,
"eslintConfig": {
"extends": [
"./.eslintrc.js"
]
},
"scripts": {
"start": "npm run build",
"build": "tsc && tsx ./scripts/build/index.ts",
"preview": "http-server ./preview -o -c-1",
"prepublishOnly": "npm start",
"version": "tsc && tsx ./scripts/sync-dotnet-version.ts",
"sync:figma": "tsx ./scripts/sync-config-to-figma.ts && npm run format:config",
"generate:powerpoint": "tsx ./scripts/generate-powerpoint.ts",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"format:config": "yq eval 'sort_keys(..)' config.yaml -i --indent 4 --prettyPrint",
"build:nuget": "dotnet build -c Release ./dotnet",
"pack:nuget": "dotnet pack -c Release ./dotnet",
"test:metadata": "node ./scripts/test-metadata.mjs",
"test:package": "node ./scripts/test-package.mjs",
"test:site": "node ./scripts/test-site.mjs",
"test:nuget": "dotnet test ./dotnet"
},
"devDependencies": {
"@figma/rest-api-spec": "^0.42.0",
"@rollup/plugin-typescript": "^12.3.0",
"@stackoverflow/eslint-config": "^1.0.0",
"@stackoverflow/prettier-config": "^1.0.0",
"@stackoverflow/tsconfig": "^1.0.0",
"@types/node": "^24.10.1",
"axios": "^1.13.1",
"chalk": "^5.6.2",
"commander": "^15.0.0",
"del": "^8.0.1",
"dotenv": "^17.2.3",
"http-server": "^14.1.1",
"mini-svg-data-uri": "^1.4.4",
"pptxgenjs": "^4.0.1",
"prettier": "^3.6.2",
"rollup": "^4.52.5",
"svg-path-parser": "^1.1.0",
"svgo": "^4.0.0",
"svgson": "^5.3.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"yaml": "^2.8.1"
}
}