-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.11 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
{
"name": "auto-writer",
"version": "1.2.5",
"description": "",
"type": "module",
"types": "libs/types.d.ts",
"main": "libs/auto-writer.umd.js",
"module": "libs/auto-writer.es.js",
"license": "MIT",
"author": {
"name": "GoOSe",
"email": "scripter@me.com",
"url": "https://redgoose.me"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redgoose-dev/auto-writer.git"
},
"bugs": {
"url": "https://github.com/redgoose-dev/auto-writer/issues/"
},
"homepage": "https://github.com/redgoose-dev/auto-writer/",
"scripts": {
"dev": "bun run --bun vite --config vite.config/docs.js",
"prebuild": "rm -rf ./docs && rm -rf ./libs",
"build": "bun run --bun vite build --emptyOutDir --config vite.config/docs.js && bun run --bun vite build --emptyOutDir --config vite.config/libs.js && cp src/types.d.ts libs",
"preview": "bun run --bun vite preview --config vite.config/docs.js",
"version-patch": "npm version patch"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"devDependencies": {
"@types/bun": "^1.2.21",
"vite": "^7.1.3"
}
}