-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.38 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
{
"name": "relit",
"version": "0.0.0-dev",
"description": "A collection of useful utilities for lit components",
"main": "lib/main.js",
"type": "module",
"files": [
"lib/",
"!lib/test"
],
"scripts": {
"clean": "rimraf ./lib",
"lint": "eslint \"src/**/*.ts\"",
"prebuild": "npm run clean",
"build": "tsc",
"test": "web-test-runner",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/43081j/relit.git"
},
"author": "James Garbutt (https://github.com/43081j)",
"license": "MIT",
"bugs": {
"url": "https://github.com/43081j/relit/issues"
},
"homepage": "https://github.com/43081j/relit#readme",
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/mocha": "^10.0.1",
"@web/dev-server-esbuild": "^1.0.2",
"@web/test-runner": "^0.18.2",
"@web/test-runner-puppeteer": "^0.16.0",
"eslint": "^8.30.0",
"eslint-config-google": "^0.14.0",
"hanbi": "^1.0.1",
"lit": "^3.0.0",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.0",
"uvu": "^0.5.6"
},
"peerDependencies": {
"lit": ">=2.5.0"
},
"dependencies": {
"@types/marked": "^4.0.8",
"marked": "^4.2.12",
"tslib": "^2.6.3"
}
}