-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.57 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
{
"scripts": {
"build": "rollup --config",
"gen-types": "tsc --project src --declaration true --emitDeclarationOnly true --noEmit false --outDir dist",
"dev-build": "rollup --config --watch",
"dev-gen-types": "tsc --project src --declaration true --emitDeclarationOnly true --noEmit false --outDir dist --watch",
"dev-run": "nodemon test.js",
"lint": "eslint .; tsc",
"package": "rm -rf dist && rollup --config && npm run gen-types && node scripts/build-package-json && cp LICENSE package-lock.json README.md index.cjs dist"
},
"repository": {
"type": "git",
"url": "https://github.com/samualtnorman/language"
},
"author": "Samual Norman",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/samualtnorman/language/issues"
},
"homepage": "https://github.com/samualtnorman/language#readme",
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@samual/eslint-config": "^0.0.3",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"babel-plugin-here": "^0.0.1",
"chalk": "^5.3.0",
"eslint": "^8.56.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-regexp": "^2.2.0",
"nodemon": "^3.0.3",
"rollup": "^4.9.5",
"typescript": "^5.3.3",
"vite": "^5.0.13",
"vitest": "^1.2.1"
},
"type": "module",
"dependencies": {
"@samual/lib": "^0.9.1",
"binaryen": "^116.0.0"
}
}