-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.63 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
{
"name": "@datasert/formulate",
"version": "1.4.4",
"description": "TypeScript library for parsing and evaluating Salesforce formulas",
"keywords": [
"ast",
"evaluator",
"formula",
"parser",
"salesforce"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/datasert/formulate.git"
},
"files": [
"dist"
],
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "rm -rf dist && tsc",
"prepublishOnly": "npm run build",
"lint": "vp lint",
"dev": "tsc --watch",
"testui": "node node_modules/vite/bin/vite.js --config vite.dev.config.ts --open /tests/dev/testui.html",
"test": "vp test run",
"test:watch": "vp test",
"tsc": "tsc --noEmit",
"pub": "npm publish --registry https://registry.npmjs.org --access public"
},
"dependencies": {
"@chevrotain/types": "^11.0.3",
"chevrotain": "^11.0.3",
"decimal.js": "^10.4.3"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.4.0",
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vite-plugin-dts": "^4.0.0",
"vite-plus": "latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
},
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
},
"engines": {
"node": ">=20"
},
"packageManager": "npm@11.17.0"
}