-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 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
{
"name": "@kazuhi-ra/avw",
"version": "0.9.9",
"main": "dist/esm/index.js",
"type": "module",
"description": "",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "webpack --watch --mode=development",
"build": "rm -rf dist && webpack --mode=production",
"prepublishOnly": "rm -rf dist && npm run ts-test && npm run build && tsc --build tsconfig.json",
"ts-test": "tsc -p . --noEmit",
"lint:fix": "node --max_old_space_size=4096 ./node_modules/eslint/bin/eslint.js --ext .ts,.tsx --fix .",
"prettier": "prettier --write --ignore-path .gitignore \"**/*.{md,ts,tsx}\"",
"format": "npm run lint:fix && npm run prettier"
},
"author": "kazuhi-ra",
"license": "MIT",
"dependencies": {
"lit": "^2.0.0-rc.2"
},
"devDependencies": {
"@types/eslint": "^7.2.13",
"@types/prettier": "^2.3.2",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.28.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"prettier": "^2.3.2",
"ts-loader": "9.2.3",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.3.5",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2"
},
"files": [
"README.md",
"dist"
]
}