-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.17 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
{
"name": "onlybuild",
"description": "A zero-config cli for building static websites.",
"version": "1.6.5",
"engines": {
"node": ">=20.x"
},
"type": "module",
"bin": {
"onlybuild": "dist/bin/index.js"
},
"exports": {
".": "./dist/src/index.js",
"./build": "./dist/src/build.js",
"./copy": "./dist/src/copy.js"
},
"types": "./dist/src/index.d.ts",
"license": "MIT",
"dependencies": {
"chalk": "5.4.1",
"dotenv": "16.4.7",
"globby": "14.1.0",
"parse-cmd-args": "5.0.2",
"tsx": "4.19.2"
},
"devDependencies": {
"@types/node": "22.13.4",
"typescript": "5.7.3"
},
"scripts": {
"test": "node --import tsx --test --experimental-test-coverage ./src/*.test.ts",
"build": "rm -rf dist/ && tsc && chmod +x ./dist/bin/index.js",
"prepare": "npm run build"
},
"keywords": [
"javascript",
"build",
"static"
],
"authors": [
{
"name": "Scott Doxey",
"email": "hello@scottdoxey.com",
"homepage": "http://scottdoxey.com/"
}
],
"homepage": "https://github.com/neogeek/onlybuild",
"repository": {
"type": "git",
"url": "git://github.com/neogeek/onlybuild.git"
}
}