-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.8 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.8 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
{
"name": "mass",
"version": "0.2.0",
"description": "AI-powered social simulation platform",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/thingsthat/mass.git"
},
"homepage": "https://github.com/thingsthat/mass#readme",
"bugs": {
"url": "https://github.com/thingsthat/mass/issues"
},
"engines": {
"node": ">=20.10.0"
},
"scripts": {
"dev": "pnpm --parallel -F mass-backend -F mass-frontend run dev",
"backend": "pnpm -F mass-backend dev",
"frontend": "pnpm -F mass-frontend dev",
"typecheck": "tsc --noEmit --skipLibCheck && pnpm -r run typecheck",
"lint:fix": "eslint \"*.{js,ts,mjs}\" --fix && pnpm -r run lint:fix",
"lint": "eslint \"*.{js,ts,mjs}\" && pnpm -r run lint",
"test": "jest",
"cli": "MASS_INVOKE_CWD=$(pwd) pnpm -F mass-cli dev",
"build:cli": "pnpm -F mass-cli build",
"knip": "knip"
},
"bin": {
"mass": "./dist/cli.js"
},
"dependencies": {
"uuid": "^11.1.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/jest": "^29.5.12",
"@types/node": "^22.19.15",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"autoprefixer": "^10.4.27",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-sonarjs": "^3.0.7",
"eslint-plugin-unicorn": "^59.0.0",
"eslint-plugin-vue": "^10.8.0",
"eslint-plugin-vue-scoped-css": "^3.0.0",
"jest": "^29.7.0",
"knip": "^6.3.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"vue-eslint-parser": "^10.4.0"
}
}