-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 KB
/
package.json
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
{
"name": "@spacingbat3/lss",
"version": "1.2.0",
"description": "LSS: Literal String Sanitizer – sanitizes string based on specific inputs and calculates the accurate result type (in TypeScript/Typed JS).",
"type": "module",
"main": "./dist/lib.js",
"types": "./types/lib.d.ts",
"scripts": {
"prepack": "tsc",
"make": "tsc",
"build": "tsc",
"compile": "tsc",
"doc": "typedoc",
"typedoc": "typedoc",
"jsdoc": "typedoc",
"tsdoc": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpacingBat3/lss.git"
},
"keywords": [
"typescript",
"sanitizer",
"static",
"type",
"string",
"template",
"literal"
],
"author": "SpacingBat3 <git@spacingbat3.anonaddy.com> (https://github.com/SpacingBat3)",
"license": "ISC",
"bugs": {
"url": "https://github.com/SpacingBat3/lss/issues"
},
"homepage": "https://github.com/SpacingBat3/lss#readme",
"devDependencies": {
"@tsconfig/strictest": "^2.0.0",
"typedoc": "^0.24.0",
"typescript": "^5.0.2"
},
"publishConfig": {
"access": "public"
}
}