-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.24 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.24 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
{
"name": "clever-js",
"version": "1.0.0",
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"test": "bun test",
"build": "bun run build:esm && bun run build:cjs && bun run build:types",
"build:esm": "rm -rf dist/esm && tsc -p tsconfig.esm.json",
"build:cjs": "rm -rf dist/cjs && tsc -p tsconfig.cjs.json",
"build:types": "rm -rf dist/types && tsc -p tsconfig.types.json",
"release": "bun run test && bun run build && bun publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeiCraftMC/CleverJS-ALL"
},
"author": "LeiCraft_",
"publisher": "LeiCraft_MC",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/LeiCraftMC/CleverJS-ALL/issues"
},
"keywords": [
"JavaScript",
"TypeScript",
"CleverJS"
],
"homepage": "https://github.com/LeiCraftMC/CleverJS-ALL#readme",
"devDependencies": {
"@types/bun": "latest",
"@types/node": "latest",
"typescript": "latest"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@cleverjs/cli": "^1.1.8"
}
}