-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
50 lines (50 loc) · 1.09 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
{
"name": "@artalar/act",
"version": "3.2.1",
"private": false,
"sideEffects": false,
"description": "act",
"source": "src/index.ts",
"exports": {
"require": "./build/index.js",
"default": "./build/index.modern.mjs"
},
"main": "./build/index.js",
"module": "./build/index.module.js",
"unpkg": "./build/index.umd.js",
"types": "./build/index.d.ts",
"browserslist": [
"last 10 chrome versions"
],
"scripts": {
"prepublishOnly": "npm run test && npm run build",
"build": "microbundle",
"test": "tsx src/index.test.ts"
},
"author": "artalar",
"maintainers": [
{
"name": "artalar",
"url": "https://github.com/artalar"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/artalar/act.git"
},
"bugs": {
"url": "https://github.com/artalar/act/issues"
},
"homepage": "https://github.com/artalar/act",
"files": [
"/build",
"/package.json"
],
"devDependencies": {
"microbundle": "^0.15.1",
"tsx": "^3.12.1",
"typescript": "^4.9.4",
"uvu": "^0.5.6"
}
}