-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.4 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
58
59
60
61
62
63
{
"name": "language-literals",
"version": "0.0.2",
"description": "Dedent named exports for tagged template literals.",
"homepage": "https://github.com/panoply/language-literals",
"author": {
"name": "Nikolas Savvidis",
"url": "https://github.com/panoply"
},
"repository": {
"type": "git",
"url": "git://github.com/panoply/language-literals.git"
},
"bugs": {
"url": "https://github.com/panoply/language-literals/issues"
},
"license": "MIT",
"type": "module",
"types": "./index.d.ts",
"module": "./index.js",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js",
"default": "./index.js"
}
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup --minify",
"test": "ava"
},
"tsup": {
"entry": [
"./src/index.ts"
],
"clean": false,
"outDir": ".",
"dts": true,
"treeshake": "smallest",
"splitting": false,
"format": "esm"
},
"prettier": "@sissel/prettier-config",
"eslintConfig": {
"ignorePatterns": [
"index.js",
"index.d.ts"
],
"extends": "@sissel/eslint-config"
},
"keywords": [],
"devDependencies": {
"@sissel/eslint-config": "^1.1.0",
"@sissel/prettier-config": "^1.1.0",
"@types/html-minifier-terser": "^7.0.0",
"ava": "^5.1.0",
"eslint": "^8.30.0",
"prettier": "^2.8.1",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
}
}