-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.58 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.58 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
{
"name": "tagged-operator",
"version": "0.0.3",
"description": "Simulate operator overloading with Tagged templates",
"author": "tolking <qw13131wang@gmail.com>",
"license": "MIT",
"main": "lib/index.umd.js",
"module": "lib/index.es.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.es.js",
"require": "./lib/index.umd.js"
}
},
"scripts": {
"build": "vite build",
"test": "vitest",
"lint": "eslint . --fix --ext .ts,.js --ignore-pattern \"/lib/\"",
"prettier": "prettier --write \"src/*.ts\" --ignore-unknown",
"prepare": "husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.8",
"prettier": "^2.6.2",
"typescript": "^4.6.3",
"vite": "^2.9.5",
"vite-plugin-dts": "^1.1.0",
"vitest": "^0.9.3"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tolking/tagged-operator.git"
},
"bugs": {
"url": "https://github.com/tolking/tagged-operator/issues"
},
"homepage": "https://github.com/tolking/tagged-operator#readme",
"files": [
"lib"
],
"keywords": [
"tagged operator",
"operator",
"overloading",
"template",
"tagged templates",
"template literals",
"template strings",
"rewrite operator"
],
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
]
}
}