-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.71 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.71 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
{
"name": "@gmod/trix",
"version": "3.0.10",
"license": "Apache-2.0",
"type": "module",
"main": "./esm/index.js",
"types": "./esm/index.d.ts",
"exports": {
".": {
"import": {
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist",
"esm",
"src"
],
"scripts": {
"test": "vitest",
"lint": "eslint --report-unused-disable-directives --max-warnings 0",
"clean": "rimraf dist esm",
"format": "prettier --write .",
"build:esm": "tsc --module nodenext --moduleResolution nodenext --outDir esm",
"build:es5": "tsc --module commonjs --moduleResolution bundler --outDir dist",
"build": "yarn build:esm && yarn build:es5",
"prebuild": "yarn clean",
"postbuild:es5": "echo '{\"type\": \"commonjs\"}' > dist/package.json",
"preversion": "yarn lint && yarn test --run && yarn build",
"postversion": "git push --follow-tags"
},
"author": "Matt Morgan",
"repository": {
"type": "git",
"url": "https://github.com/GMOD/trix-js.git"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unicorn": "^64.0.0",
"generic-filehandle2": "^2.1.4",
"prettier": "^3.8.1",
"puppeteer": "^24.40.0",
"rimraf": "^6.1.3",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.2",
"vitest": "^4.1.2"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@jbrowse/quick-lru": "^7.3.5"
}
}