-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.37 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
{
"type": "module",
"name": "@hazae41/saumon",
"version": "0.2.14",
"description": "Ultra simple macro system for TypeScript",
"homepage": "https://github.com/hazae41/phobos",
"repository": "github:hazae41/phobos",
"author": "hazae41",
"license": "MIT",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts",
"sideEffects": false,
"files": [
"./dist/esm",
"./dist/cjs",
"./dist/types",
"./dist/cli"
],
"scripts": {
"build": "rimraf dist && rollup -c",
"test": "bun ./dist/cli/index.cli.mjs build -r ./test",
"prepare": "npm run build"
},
"devDependencies": {
"@hazae41/rimraf": "^1.0.1",
"@rollup/plugin-typescript": "^11.1.5",
"@surma/rollup-plugin-off-main-thread": "^2.2.3",
"@types/node": "^20.8.7",
"rollup": "^4.1.4",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-node-externals": "^6.1.2"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs"
}
},
"keywords": [
"phobos",
"test",
"testing",
"unit-test",
"unit-testing",
"runner",
"typescript",
"fast",
"minimalist",
"esmodules",
"parallel",
"concurrent",
"asynchronous",
"browser"
],
"bin": {
"saumon": "./dist/cli/index.cli.mjs"
}
}