-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.66 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
{
"name": "@seqsense/pcdeditor",
"version": "0.0.0",
"description": "PCD editor",
"main": "pcdeditor.js",
"types": {
".": "pcdeditor.d.ts",
"./ReactPCDEditor": "./ReactPCDEditor/index.d.ts"
},
"exports": {
".": {
"import": "./pcdeditor.esm.js",
"require": "./pcdeditor.js",
"node": "./pcdeditor.esm.js",
"default": "./pcdeditor.esm.js"
},
"./ReactPCDEditor": "./ReactPCDEditor/index.js"
},
"files": [
"pcdeditor.js",
"pcdeditor.esm.js",
"pcdeditor.d.ts",
"wasm_exec.js",
"pcdeditor.wasm",
"ReactPCDEditor/index.js",
"ReactPCDEditor/index.d.ts"
],
"scripts": {
"build": "make pcdeditor.esm.js ReactPCDEditor/index.js",
"fmt": "prettier --write pcdeditor.js pcdeditor.d.ts ReactPCDEditor/index.tsx",
"lint": "eslint",
"typecheck": "tsc --noEmit --allowJs --jsx react --esModuleInterop pcdeditor.js ReactPCDEditor/index.tsx",
"tsc": "tsc --declaration --jsx react --esModuleInterop ReactPCDEditor/index.tsx"
},
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git://github.com/seqsense/pcdeditor.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/seqsense/pcdeditor/issues"
},
"homepage": "https://github.com/seqsense/pcdeditor#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"eslint": "9.17.0",
"eslint-plugin-react": "7.37.3",
"globals": "15.14.0",
"prettier": "3.4.2",
"react": "18.3.1",
"typescript": "5.7.2",
"typescript-eslint": "8.19.1"
},
"packageManager": "[email protected]"
}