-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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": "@atoll/api-types",
"version": "1.0.0",
"description": "Atoll REST API shared types",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"transpile": "tsc",
"build": "rollup -c",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"watch": "rollup -cw",
"clean": "npx --no-install rimraf dist",
"test": "tsc --noEmit --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/51ngul4r1ty/atoll-api-types.git"
},
"author": {
"name": "Kevin Berry",
"email": "41717340+51ngul4r1ty@users.noreply.github.com"
},
"license": "MIT",
"engines": {
"node": ">=16.14.0",
"npm": ">=8.3.1"
},
"bugs": {
"url": "https://github.com/51ngul4r1ty/atoll-api-types/issues"
},
"homepage": "https://github.com/51ngul4r1ty/atoll-api-types#readme",
"devDependencies": {
"autoprefixer": "10.4.5",
"rimraf": "3.0.2",
"rollup": "2.71.1",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-typescript2": "0.31.2",
"typescript": "4.6.4"
}
}