-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.34 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@spacingbat3/lss",
"version": "1.2.0",
"description": "LSS: Literal String Sanitizer – sanitizes string based on specific inputs and tries to guess the accurate type (in TypeScript/Typed JS).",
"main": "./dist/lib.js",
"module": "./dist/lib.mjs",
"types": "./types/lib.d.ts",
"exports": {
".": {
"import": {
"types": "./types/lib.d.mts",
"default": "./dist/lib.mjs"
},
"default": {
"types": "./types/lib.d.ts",
"default": "./dist/lib.js"
}
}
},
"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"
}
}