-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.16 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
{
"name": "typestr",
"description": "a string standard library for compile-time typescript",
"version": "0.0.10",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alii/typestr.git"
},
"author": "Alistair Smith <alistairsmith01@gmail.com> (https://alistair.sh)",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/alii"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"eslint-config-xo": "^0.39.0",
"eslint-config-xo-typescript": "^0.47.1",
"prettier": "^2.4.1",
"tsup": "^5.7.0",
"typescript": "^4.4.4"
},
"scripts": {
"build": "tsup src/index.ts --dts --format esm,cjs",
"lint": "eslint ./src/**/*.ts",
"fix": "eslint ./src/**/*.ts --fix",
"prepublish": "yarn build"
},
"bugs": {
"url": "https://github.com/alii/typestr/issues"
},
"homepage": "https://github.com/alii/typestr#readme",
"files": [
"dist",
"package.json"
],
"keywords": [
"strings",
"typescript"
]
}