-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.78 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
60
61
62
63
64
{
"name": "aoothjs",
"version": "0.1.0",
"private": true,
"description": "User Authentication Framework",
"keywords": [
"auth",
"authentication"
],
"homepage": "https://github.com/moostjs/aoothjs#readme",
"bugs": {
"url": "https://github.com/moostjs/aoothjs/issues"
},
"license": "MIT",
"author": "Artem Maltsev",
"repository": {
"type": "git",
"url": "git+https://github.com/moostjs/aoothjs.git"
},
"type": "module",
"scripts": {
"ready": "vp fmt && vp lint && vp run --filter './packages/*' test && vp run --filter './packages/*' build",
"build": "vp run --filter './packages/*' build",
"test": "vp run --filter './packages/*' test",
"release": "node scripts/release.js patch",
"release:minor": "node scripts/release.js minor",
"release:major": "node scripts/release.js major",
"prepare": "vp config",
"docs": "pnpm --filter ./docs dev",
"docs-build": "pnpm --filter ./docs build",
"docs-serve": "pnpm --filter ./docs serve"
},
"devDependencies": {
"@atscript/core": "catalog:",
"@prostojs/dye": "^0.3.0",
"@prostojs/ftring": "^0.0.3",
"@prostojs/wf": "^0.2.1",
"@types/node": "catalog:",
"@wooksjs/event-core": "catalog:",
"@wooksjs/event-http": "catalog:",
"@wooksjs/event-wf": "catalog:",
"@wooksjs/http-body": "catalog:",
"conventional-changelog": "^5.1.0",
"conventional-changelog-cli": "^4.1.0",
"typescript": "catalog:",
"vite-plus": "catalog:",
"wooks": "catalog:"
},
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@10.32.1",
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"@atscript/db",
"@atscript/db-sqlite"
],
"overrides": {
"vite": "8.0.14",
"vitepress>vite": "^7.3.1"
}
}
}