-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.61 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.61 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
{
"name": "nalanda-workspace",
"version": "0.0.0",
"description": "",
"authors": [
{
"name": "Kushan Joshi",
"email": "0o3ko0@gmail.com",
"web": "http://github.com/kepta"
}
],
"repository": {
"type": "git",
"url": "https://github.com/bangle-io/nalanda.git"
},
"bugs": {
"url": "https://github.com/bangle-io/nalanda/issues"
},
"scripts": {
"codesandbox:install": "corepack enable && pnpm install --frozen-lockfile",
"build": "pnpm -r run build",
"lint": "pnpm -r run lint",
"lint-packages": "pnpm -r --filter \"./packages/**\" run lint",
"test": "pnpm -r run test",
"test:watch": "pnpm -r run test:watch",
"build-docs:netlify": "rm -rf documentation/.next/ && rm -rf documentation/dist/ && pnpm run build-packages && pnpm run build-docs",
"build-docs": "pnpm -r --filter documentation build",
"build-docs:watch": "pnpm -r --filter documentation preview",
"build-packages": "pnpm -r --filter \"./packages/**\" build",
"build-packages:watch": "pnpm -r --filter \"./packages/**\" build:watch",
"publish-alpha": "pnpm -r --filter \"./packages/**\" publish --tag alpha --otp ${npm_config_otp} --access public",
"publish-latest": "pnpm -r --filter \"./packages/**\" publish --tag latest --otp ${npm_config_otp} --access public"
},
"keywords": [],
"license": "MIT",
"dependencies": {
"prettier": "^3.0.3",
"tsconfig": "workspace:*",
"typescript": "^5.2.2"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"quoteProps": "consistent",
"arrowParens": "always",
"printWidth": 80
}
}