-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.76 KB
/
package.json
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
{
"name": "cere-ddc-sdk",
"description": "Cere DDC SDK for JavaScript",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Cerebellum-Network/cere-ddc-sdk-js.git"
},
"author": "Cere Network <[email protected] (https://www.cere.io/)",
"license": "Apache-2.0",
"scripts": {
"lint": "eslint --quiet '**/*.{ts,tsx,js,cjs,mjs,jsx,json}'",
"lint:fix": "npm run lint -- --fix",
"test": "lerna run test",
"test:ci": "lerna run test -- --silent",
"test:clean": "lerna run test:clean",
"test:env": "lerna run test:env",
"clean": "lerna run clean",
"docs": "lerna run docs",
"build": "lerna run build",
"build:watch": "lerna watch -- lerna run build",
"package": "lerna run package",
"release": "lerna version --conventional-graduate",
"release:no-push": "npm run release -- --no-push --no-git-tag-version",
"release:rc": "lerna version --conventional-prerelease",
"release:rc:no-push": "npm run release:rc -- --no-push --no-git-tag-version",
"release:publish": "lerna publish from-package",
"check-types": "tsc --noEmit",
"check-types:ci": "npm run check-types -- -p ./tsconfig.build.json",
"playground": "lerna run playground"
},
"dependencies": {
"@types/node": "^18.17.1",
"clean-publish": "^4.2.0",
"eslint": "^8.56.0",
"lerna": "^8.0.1",
"microbundle": "^0.15.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.25.7",
"typescript": "^5.3.3",
"wait-port": "^1.1.0"
},
"workspaces": {
"packages": [
"packages/*",
"examples/*",
"playground",
"tests"
],
"nohoist": [
"playground/**"
]
}
}