-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.45 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.45 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
{
"name": "log1997-utils",
"version": "0.0.5",
"description": "log1997's utils package",
"main": "lib/index.mjs",
"types": "lib/index.d.ts",
"private": false,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "pnpm run build --watch --ignore-watch examples",
"dev:react": "cd examples/react-project && npm run dev",
"build": "vite build",
"docs:dev": "vitepress dev packages",
"docs:build": "vitepress build packages",
"docs:preview": "vitepress preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LOG1997/log-utils.git"
},
"keywords": [
"utils",
"vue",
"react",
"vite",
"log1997",
"js",
"ts",
"frontend"
],
"files": [
"lib"
],
"author": "log1997",
"license": "MIT",
"bugs": {
"url": "https://github.com/LOG1997/log-utils/issues"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0",
"typescript": ">=4.0.0"
},
"homepage": "https://github.com/LOG1997/log-utils#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^11.0.0",
"@types/node": "^18.14.1",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"path": "^0.12.7",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-remove-console": "^2.1.0",
"vitepress": "^1.0.0-alpha.64"
}
}