-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
70 lines (70 loc) · 2.08 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": "@siemens/ix-icons",
"version": "2.2.0",
"license": "MIT",
"description": "Siemens iX icon library",
"author": "Siemens AG",
"homepage": "https://www.github.com/siemens/ix-icons",
"repository": {
"type": "git",
"url": "https://www.github.com/siemens/ix-icons.git"
},
"bugs": {
"url": "https://www.github.com/siemens/ix/issues"
},
"engines": {
"pnpm": ">=9.x.x",
"node": ">=18.x.x"
},
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/ix-icons/ix-icons.esm.js",
"files": [
"dist/",
"loader/",
"icons/",
"svg/"
],
"scripts": {
"build:js-icons": "ts-node -P ./scripts/tsconfig.json ./scripts/build-icons",
"build": "rimraf build-dist svg && pnpm build:js-icons && stencil build",
"start": "rimraf build-dist svg && pnpm build:js-icons && stencil build --dev --watch --serve",
"test": "stencil test --spec",
"test:watch": "stencil test --spec --watchAll",
"visual-regression": "playwright test --reporter html",
"generate": "stencil generate",
"host-root": "http-server -a 127.0.0.1 -p 8080 ./",
"ci:version": "pnpm changeset version && pnpm i --lockfile-only",
"ci:publish": "pnpm changeset publish"
},
"dependencies": {
"@stencil/core": "^4.12.6"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@playwright/test": "^1.34.3",
"@stencil/sass": "^3.0.10",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.11",
"@types/rimraf": "^4.0.5",
"fs-extra": "^11.1.0",
"gulp": "^4.0.2",
"gulp-svgo": "^2.2.1",
"http-server": "^14.1.1",
"jest": "^27.5.1",
"jest-cli": "^27.5.1",
"lodash": "^4.17.2",
"puppeteer": "^19.5.2",
"rimraf": "^5.0.0",
"svgo": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}