This repository was archived by the owner on Mar 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.38 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.38 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
{
"name": "@kitajs/ts-html-plugin",
"version": "1.3.4",
"description": "Typescript LSP extension to catch XSS vulnerabilities.",
"bugs": "https://github.com/kitajs/ts-html-plugin/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/kitajs/ts-html-plugin.git"
},
"funding": "https://github.com/kitajs/ts-html-plugin?sponsor=1",
"license": "MIT",
"author": "arthurfiorette <npm@arthur.place>",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ts-html-plugin": "dist/cli.js",
"xss-scan": "dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsc -p tsconfig.build.json --watch",
"format": "prettier --write .",
"prepack": "npm run build",
"test": "node --require @swc-node/register --test test/**/*.test.ts",
"test-procedure": "pnpm build && pnpm install && pnpm test"
},
"dependencies": {
"chalk": "^4.1.2",
"tslib": "^2.6.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@arthurfiorette/prettier-config": "^1.0.12",
"@swc-node/register": "^1.6.8",
"@swc/helpers": "^0.5.3",
"@types/node": "^20.9.2",
"@types/yargs": "^17.0.31",
"fast-defer": "^1.1.8",
"prettier": "^3.1.0",
"self": "file:."
},
"peerDependencies": {
"@kitajs/html": "^3.1.1",
"typescript": "^5.2.2"
},
"packageManager": "pnpm@8.7.5"
}