-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.78 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
64
65
66
67
68
69
{
"name": "shadow-dom-utils",
"version": "0.0.0-dev",
"type": "module",
"description": "A set of utilities for dealing with shadow DOM.",
"files": [
"dist"
],
"scripts": {
"prepare": "tshy",
"build:clean": "rimraf ./dist",
"test:clean": "rimraf ./coverage",
"lint": "eslint src",
"build": "npm run build:clean && tsc --noEmit",
"test": "npm run test:clean && web-test-runner",
"format": "prettier --write \"src/**/*.ts\""
},
"tshy": {
"exclude": [
"src/test"
],
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/43081j/shadow-dom-utils.git"
},
"author": "James Garbutt (https://github.com/43081j)",
"license": "MIT",
"bugs": {
"url": "https://github.com/43081j/shadow-dom-utils/issues"
},
"homepage": "https://github.com/43081j/shadow-dom-utils#readme",
"devDependencies": {
"@eslint/js": "^9.3.0",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.6",
"@web/dev-server-esbuild": "^1.0.2",
"@web/test-runner": "^0.18.2",
"@web/test-runner-puppeteer": "^0.16.0",
"chai": "^5.1.1",
"eslint": "^8.57.0",
"eslint-plugin-jsdoc": "^48.2.6",
"mocha": "^10.4.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"tshy": "^1.14.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.11.0"
},
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
},
"./package.json": "./package.json"
},
"main": "./dist/commonjs/index.js",
"types": "./dist/commonjs/index.d.ts"
}