-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.93 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "byndly",
"version": "2.0.0",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"bin": "./dist/bin/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/types/index.d.ts"
},
"description": "byndly is lightweight, dependency free way to create a development environment for testing javascript bundles.",
"keywords": [
"development server",
"byndly",
"bundle",
"server",
"dependency-free"
],
"repository": "https://github.com/IamSebastianDev/byndly",
"author": "Sebastian <sebastian@iamsebastian.dev>",
"license": "MIT",
"private": false,
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/node": "^22.7.4",
"alex": "^11.0.1",
"ava": "^6.1.1",
"c8": "^10.1.2",
"esbuild": "^0.24.0",
"husky": "^9.0.11",
"lint-staged": ">=10",
"prettier": "^3.2.5",
"rollup": "^4.10.0",
"rollup-plugin-add-shebang": "^0.3.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.1",
"semantic-release": "^24.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"scripts": {
"ci": "yarn install --frozen-lockfile",
"semantic-release": "semantic-release --branches main",
"prepare": "husky install",
"test": "NODE_OPTIONS='--import tsx' yarn ava",
"test:coverage": "c8 yarn run test",
"build": " rollup -c .config/rollup.config.js",
"dev": "yarn build --watch",
"dev:bin": "tsx src/bin/index.ts"
},
"ava": {
"extensions": {
"ts": "commonjs"
}
},
"lint-staged": {
"*.{ts,css,md}": "prettier --write"
},
"dependencies": {}
}