-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.35 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.35 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
{
"name": "@pensar/surface",
"version": "0.2.1",
"description": "White-box endpoint discovery for source code repositories.",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"surface": "./dist/cli.js"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pensarai/surface.git"
},
"scripts": {
"build": "tsup && node scripts/postbuild.mjs",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"tsc": "tsc --noEmit",
"test:smoke": "node scripts/smoke-test.mjs",
"prepublishOnly": "npm run build && npm run test:smoke"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-unused-imports": "^4.4.1",
"prettier": "^3.8.1",
"tsup": "^8.5.0",
"typescript-eslint": "^8.57.1"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"js-yaml": "^4.1.1"
}
}