-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.69 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
{
"name": "@skax/web-components",
"version": "0.2.0",
"main": "./cjs/index.js",
"module": "./es/index.js",
"types": "./es/index.d.ts",
"typings": "./es/index.d.ts",
"license": "MIT",
"author": "ShineShao <[email protected]>",
"description": "web components",
"files": [
"./lib"
],
"keywords": [
"web component",
"web components",
"web-component",
"lit",
"typescript",
"sass"
],
"scripts": {
"dev": "webpack server --mode development --open",
"build": "gulp",
"build:doc": "webpack --mode production && gulp copyPublicToDocs",
"build:dev": "webpack --mode development",
"test": "jest",
"postinstall": "husky install .husky",
"lint": "eslint .",
"pub": "cd lib && npm publish --access public"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.6",
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@statoscope/webpack-plugin": "^5.24.0",
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"babel-jest": "^29.3.1",
"babel-loader": "^9.0.1",
"clean-webpack-plugin": "^4.0.0",
"del": "^6.1.1",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"file-loader": "^6.2.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-header": "^2.0.9",
"gulp-rename": "^2.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lit-css-loader": "^2.0.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"sass": "^1.56.1",
"sass-loader": "^13.1.0",
"through2": "^4.0.2",
"ts-jest": "^29.0.3",
"ts-loader": "8.4.0",
"typescript": "^4.8.4",
"url-loader": "^4.1.1",
"vite": "^3.2.2",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-stream": "^7.0.0"
},
"dependencies": {
"lit": "^2.4.0"
},
"bugs": {
"url": "https://github.com/freeshineit/web-components/issues"
},
"homepage": "https://github.com/freeshineit/web-components",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freeshineit/web-components.git",
"branch": "main",
"platform": "github"
},
"engines": {
"node": ">=14"
}
}