-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.71 KB
/
package.json
File metadata and controls
62 lines (62 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
{
"name": "@mathflowjs/mathflow",
"version": "2.0.0",
"description": "A lightweight library for evaluating mathematical expressions written in natural mathematical notation.",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "unbuild --minify",
"format": "prettier src tests demo --write",
"lint": "eslint src tests && prettier src tests demo --check",
"lint:fix": "eslint --fix src tests demo && pnpm format",
"test": "vitest run",
"prepare": "husky || true",
"release": "release-it",
"prepack": "pnpm build"
},
"keywords": [
"math",
"mathflow",
"js",
"interpreter"
],
"author": {
"name": "Henry Hale",
"url": "https://github.com/henryhale"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.32.0",
"@release-it/conventional-changelog": "^10.0.1",
"@types/jest": "^30.0.0",
"eslint": "^9.32.0",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jest": "^30.0.5",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"release-it": "^19.0.4",
"ts-jest": "^29.4.0",
"typescript": "5.8.3",
"typescript-eslint": "^8.38.0",
"unbuild": "^3.6.0",
"vite": "^7.1.1",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.ts": "pnpm lint"
}
}