-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.81 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.81 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "typelit",
"version": "0.2.0",
"description": "A type-safe string templating library for TypeScript",
"type": "module",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"browser": "dist/umd/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"!src/**/*.test.ts",
"!src/**/*.test-d.ts"
],
"scripts": {
"lint": "prettier --check . && eslint --max-warnings=0",
"test": "vitest",
"build": "rollup -c",
"dev": "rollup -c -w",
"prepublishOnly": "npm run lint && npm run test",
"prepack": "rimraf dist && npm run build"
},
"keywords": [
"typescript",
"template",
"templating",
"string-templates",
"string-interpolation",
"type-safe",
"type-inference",
"strongly-typed",
"string-formatting",
"string-manipulation",
"text-processing",
"interpolation",
"type-checking",
"zero-dependencies",
"zero-runtime"
],
"author": "Charles Francoise <charles.francoise@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/loderunner/typelit.git"
},
"bugs": {
"url": "https://github.com/loderunner/typelit/issues"
},
"homepage": "https://github.com/loderunner/typelit#readme",
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "9.39.2",
"@rollup/plugin-terser": "1.0.0",
"@rollup/plugin-typescript": "12.3.0",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsdoc": "62.8.0",
"globals": "17.4.0",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"rollup": "4.59.0",
"rollup-plugin-dts": "6.4.0",
"tslib": "2.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.57.0",
"vitest": "4.1.0"
}
}