-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 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
{
"name": "ts-math-evaluate",
"version": "0.0.6",
"repository": "[email protected]:dqbd/ts-math-evaluate.git",
"author": "Duong Tat Dat <[email protected]>",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "eslint --ext .js,.ts src",
"build": "tsup --entry src/index.ts --entry src/hotscript.ts --format cjs,esm --dts",
"build:docs": "typedoc --out docs src/index.ts",
"publish": "yarn run build && changeset publish"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"./hotscript": {
"types": "./dist/hotscript.d.ts",
"import": "./dist/hotscript.mjs",
"default": "./dist/hotscript.js"
}
},
"peerDependencies": {
"hotscript": "^1.0.11"
},
"peerDependenciesMeta": {
"hotscript": {
"optional": true
}
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/ignore-walk": "^4.0.0",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"@typescript/analyze-trace": "^0.10.0",
"check-export-map": "^1.3.0",
"eslint": "^8.28.0",
"eslint-plugin-expect-type": "^0.2.1",
"hotscript": "^1.0.11",
"ignore-walk": "^6.0.2",
"outdent": "^0.8.0",
"prettier": "^2.8.7",
"ts-expect": "^1.3.0",
"ts-morph": "^17.0.1",
"tsup": "^6.7.0",
"typedoc": "^0.24.6",
"typescript": "^4.9.3"
}
}