-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.11 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.11 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
{
"name": "@plures/pares-modulus",
"version": "0.2.0",
"description": "Plugin registry for pares-radix — curated, gated collection of plugins",
"type": "module",
"scripts": {
"build": "tsc --noEmit",
"lint": "eslint plugins/ gates/ scripts/",
"check": "tsc --noEmit",
"test": "echo \"No tests yet\" && exit 0",
"registry:build": "tsx scripts/build-registry.ts",
"gate:manifest": "tsx gates/validate-manifest.ts",
"gate:security": "tsx gates/security-scan.ts",
"gate:size": "tsx gates/size-audit.ts",
"gate:all": "npm run gate:manifest -- plugins/$PLUGIN && npm run gate:security -- plugins/$PLUGIN && npm run gate:size -- plugins/$PLUGIN"
},
"keywords": [
"praxis",
"plugins",
"registry"
],
"author": "Plures",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/plures/pares-modulus.git"
},
"devDependencies": {
"typescript": "^5.7.0",
"tsx": "^4.0.0",
"eslint": "^9.0.0",
"@eslint/js": "^9.0.0",
"typescript-eslint": "^8.0.0"
},
"dependencies": {},
"peerDependencies": {
"svelte": "^5.0.0"
}
}