-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.02 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.02 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
71
{
"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 unstable_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",
"devDependencies": {
"chai": "^5.1.1",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-svelte": "^3.3.3",
"eslint-plugin-vue": "^10.0.0",
"esm": "^3.2.25",
"husky": "^9.1.7",
"lerna": "^8.1.8",
"mocha": "^10.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"rimraf": "^5.0.5",
"svelte-eslint-parser": "^1.1.0",
"typescript-eslint": "^8.27.0",
"wait-on": "^8.0.1"
},
"private": true,
"dependencies": {
"next": "^16.0.7"
}
}