-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.1 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
{
"name": "@psec/pmlang",
"version": "0.0.5",
"description": "Parsec Math Language (PMLang) — mathematical expression engine for Rust and JS",
"author": {
"email": "naylour.developer@ya.ru",
"name": "Naylour",
"url": "https://github.com/naylour"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ParsecProjects/pmlangjs.git"
},
"bugs": {
"email": "naylour.developer@ya.ru",
"url": "https://github.com/ParsecProjects/pmlangjs/issues"
},
"homepage": "https://github.com/ParsecProjects/pmlangjs#readme",
"module": "src/index.ts",
"types": "build/index.d.ts",
"main": "build/index.js",
"files": [
"build"
],
"type": "module",
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"scripts": {
"build": "bun build ./src/index.ts --outdir build",
"publish": "bun publish --access public",
"test": "bun test"
},
"publishConfig": {
"access": "public"
}
}