-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.09 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@pine-ds/icons",
"version": "8.12.0",
"license": "MIT",
"description": "Pine Icon Library",
"author": " Kajabi Design System Services",
"keywords": [
"icon",
"icon library",
"pine",
"svg",
"web component"
],
"workspaces": [
"./"
],
"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/pds-icons/icons.esm.js",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kajabi/pine-icons.git"
},
"bugs": {
"url": "https://github.com/Kajabi/pine-icons/issues"
},
"scripts": {
"build": "run-s build.ts build.icons build.component collection.copy",
"build.dev": "run-s build.ts build.icons build.component.dev collection.copy",
"build.component": "stencil build --docs",
"build.component.dev": "stencil build --dev --docs --watch --serve",
"build.icons": "run-func scripts/optimize-svgs.js run $(pwd)",
"build.ts": "tsc -p scripts/tsconfig.json",
"collection.copy": "run-func scripts/collection-copy.js collectionCopy $(pwd)",
"deploy": "run-s build",
"figma.export": "node scripts/figma_icons/figma-icon-export.js",
"lint": "run-p lint.*",
"lint.eslint": "eslint src/**/*.{ts,tsx}",
"start": "run-s build.dev",
"test": "stencil test --spec --e2e",
"test.spec": "stencil test --spec",
"test.spec.watch": "stencil test --spec --watch",
"test.watch": "stencil test --spec --e2e --watch --coverage",
"update": "run-s build.ts build figma.export"
},
"files": [
"components/",
"dist/",
"icons/"
],
"dependencies": {
"@stencil/core": "4.22.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@nx/js": "20.1.2",
"@stencil/sass": "^2.0.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.5.11",
"@types/mkdirp": "^1.0.2",
"@types/svgo": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"axios": "^1.1.3",
"babel-plugin-macros": "^3.1.0",
"chalk": "^4.1.2",
"cliui": "^8.0.1",
"commitizen": "^4.3.0",
"cosmiconfig": "^9.0.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-storybook": "^0.6.14",
"fs-extra": "^10.1.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"lefthook": "^1.8.2",
"lerna": "^7.3.0",
"lint-staged": "^14.0.1",
"mkdirp": "^1.0.4",
"npm-run-all": "^4.1.5",
"nx": "20.1.2",
"prettier": "^2.7.1",
"puppeteer": "^21.6.0",
"run-func": "^3.0.0",
"simple-git": "^3.16.0",
"svgo": "^3.0.0",
"typescript": "^5.1.6",
"validate-branch-name": "^1.3.0",
"yaml": "^1.10.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}