-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.99 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
65
66
67
68
69
70
{
"name": "packages-js",
"version": "0.2.0",
"description": "Monorepo of JS packages",
"workspaces": [
"api",
"better-auth",
"definitions",
"email-verification",
"express",
"fastify",
"helper/browser",
"helper/server",
"httpsig",
"identifier",
"nextjs",
"quickstart",
"react",
"svelte",
"vue",
"web-identity"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hellocoop/packages-js.git"
},
"scripts": {
"clean": "npm run prebuild --workspaces",
"build": "lerna run build --sort",
"test": "lerna run test",
"release": "./scripts/release.sh",
"publish:canary": "npm run build && lerna publish --canary --yes --no-private",
"format": "prettier --write .",
"lint": "prettier --check . && eslint --flag v10_config_lookup_from_file . --fix",
"check": "npm run format && npm run lint",
"prepare": "husky"
},
"author": {
"name": "Hello Identity Co-op",
"email": "contact@hello.coop",
"url": "https://hello.coop"
},
"bugs": {
"url": "https://github.com/hellocoop/packages-js/issues"
},
"homepage": "https://github.com/hellocoop/packages#readme",
"license": "MIT",
"engines": {
"node": ">=24"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"chai": "^6.2.2",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-svelte": "^3.23.0",
"eslint-plugin-vue": "^10.11.0",
"globals": "^17.12.0",
"husky": "^9.1.7",
"lerna": "^10.0.1",
"mocha": "^12.0.0",
"prettier": "~3.4.2",
"prettier-plugin-svelte": "^4.1.1",
"svelte-eslint-parser": "^1.8.1",
"typescript-eslint": "^8.69.0",
"wait-on": "^9.1.0"
},
"private": true
}