-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.23 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
{
"name": "chadbox",
"version": "1.0.0",
"description": "A lightweight, secure, and self-hostable code execution engine designed for efficiency and ease of use",
"main": "index.js",
"private": true,
"type": "module",
"scripts": {
"dev": "pnpm --filter @chadbox/api run dev",
"start": "pnpm --filter @chadbox/api run start",
"build": "pnpm -r run build",
"test": "pnpm --filter @chadbox/core run test",
"test:core": "pnpm --filter @chadbox/core run test",
"test:cli": "pnpm --filter @chadbox/cli run test",
"test:chaos": "tsx packages/api/src/__tests__/chaos_2.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,js,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md,yml,yaml}\"",
"type-check": "tsc -b --pretty false",
"type-check:all": "pnpm -r run type-check",
"clean": "pnpm -r exec rm -rf dist node_modules .turbo .pnpm-store",
"prepare": "husky",
"chad": "tsx packages/cli/src/index.ts"
},
"keywords": [
"code-execution",
"sandbox",
"safe-execution",
"multi-language",
"open-source"
],
"author": "Pranav Bagal @cryptomafiaPB",
"license": "MIT",
"packageManager": "pnpm@11.2.2",
"repository": {
"type": "git",
"url": "https://github.com/cryptomafiaPB/chadbox"
},
"bugs": {
"url": "https://github.com/cryptomafiaPB/chadbox/issues"
},
"homepage": "https://github.com/cryptomafiaPB/chadbox",
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^9.0.0",
"lint-staged": "^16.0.0",
"prettier": "^3.3.0",
"tsx": "^4.22.3",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{js,json,md,yml,yaml}": [
"prettier --write"
]
}
}