-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.1 KB
/
package.json
File metadata and controls
49 lines (49 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
42
43
44
45
46
47
48
49
{
"name": "onlybuild",
"description": "A zero-config cli for building static websites.",
"version": "2.0.1",
"engines": {
"node": ">=22.22"
},
"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.6.2",
"tsx": "4.21.0"
},
"devDependencies": {
"@types/node": "25.3.0",
"typescript": "5.9.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"
}
}