-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.74 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.74 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
{
"name": "pkl.js",
"version": "0.3.1",
"description": "Plugin SDK for application developers using React",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"build:core": "npm run build -w packages/core",
"build:sdk": "npm run build -w packages/sdk",
"build:packages": "npm run build:core && npm run build:sdk",
"build:example-sdk": "npm run build -w examples/sdk",
"build:plugins": "npm run build -w examples/plugins",
"build:examples": "npm run build:example-sdk && npm run build:plugins",
"build:app": "npm run build -w examples/app",
"build:all": "npm run build:packages && npm run build:examples && npm run build:app",
"dev": "npm run dev --workspaces --if-present",
"dev:app": "npm run dev -w examples/app",
"dev:core": "npm run dev -w packages/core",
"dev:sdk": "npm run dev -w packages/sdk",
"dev:example-sdk": "npm run dev -w examples/sdk",
"dev:plugins": "npm run dev -w examples/plugins",
"docs:install": "cd docs && npm install",
"docs:serve": "cd docs && npm start",
"docs:build": "cd docs && npm run build",
"docs:clean": "cd docs && npm run clear",
"docs": "npm run docs:serve",
"lint": "npm run lint --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"clean:all": "npm run clean && cd examples/app && npm run clean"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^18.0.0",
"typescript": "^5.5.0"
},
"packageManager": "yarn@4.13.0+sha512.5c20ba010c99815433e5c8453112165e673f1c7948d8d2b267f4b5e52097538658388ebc9f9580656d9b75c5cc996f990f611f99304a2197d4c56d21eea370e7"
}