-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.42 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.42 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "parsec-web",
"version": "1.0.0",
"type": "module",
"description": "Fast mathematical expression evaluator powered by WebAssembly - A generalized JavaScript library that connects to equations-parser for cross-platform equation evaluation",
"main": "index.cjs",
"module": "index.mjs",
"types": "types.d.ts",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.cjs",
"types": "./types.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"index.cjs",
"index.mjs",
"types.d.ts",
"js/",
"wasm/",
"README.md",
"CLAUDE.md"
],
"engines": {
"node": ">=16.0.0"
},
"browser": {
"./index.js": "./index.js",
"./index.mjs": "./index.mjs"
},
"scripts": {
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:unit": "vitest tests/unit",
"test:integration": "vitest tests/integration",
"test:performance": "vitest tests/performance",
"test:run": "vitest run",
"build": "./build.sh",
"lint": "eslint . --ext .js,.mjs",
"lint:fix": "eslint . --ext .js,.mjs --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"style": "npm run lint && npm run format:check",
"style:fix": "npm run lint:fix && npm run format",
"serve": "python3 -m http.server 8000",
"dev": "python3 -m http.server 8000",
"prepublishOnly": "npm run build && npm run test:run && npm run lint",
"prepack": "npm run build"
},
"keywords": [
"math",
"equations",
"calculator",
"expressions",
"webassembly",
"wasm",
"cross-platform",
"javascript",
"react",
"vue",
"angular",
"flutter-web",
"nodejs",
"trigonometry",
"logarithms",
"string-functions",
"date-functions",
"complex-numbers",
"arrays",
"performance",
"offline"
],
"repository": {
"type": "git",
"url": "git+https://github.com/oxeanbits/parsec-web.git"
},
"bugs": {
"url": "https://github.com/oxeanbits/parsec-web/issues"
},
"homepage": "https://github.com/oxeanbits/parsec-web#readme",
"author": "OxeanBits",
"license": "MIT",
"devDependencies": {
"@vitest/coverage-v8": "^1.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jsdom": "^26.1.0",
"prettier": "^3.0.0",
"vitest": "^1.0.0"
},
"sideEffects": false
}