-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.54 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
61
62
{
"name": "@dicoding-dev/abilities-js",
"version": "0.5.4",
"description": "A core package for managing the authorization through CanCanCan style. With supports of granularity based on Attributes Based Access Control.",
"source": "src/index.ts",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"./package.json": "./package.json"
},
"publishConfig": {
"exports": {
".": "./dist/index.js"
},
"types": "./dist/index.d.ts"
},
"files": [
"dist/"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"prepublishOnly": "npm run build",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dicoding-dev/abilities-js.git"
},
"keywords": [
"abilities",
"authorization",
"abac"
],
"author": "AlexzPurewoko",
"license": "MIT",
"bugs": {
"url": "https://github.com/dicoding-dev/abilities-js/issues"
},
"homepage": "https://github.com/dicoding-dev/abilities-js#readme",
"dependencies": {
"object-deep-compare": "^1.2.0"
},
"devDependencies": {
"parcel": "^2.10.3",
"typescript": "^5.3.3",
"vitest": "^1.0.4",
"rimraf": "^5.0.5"
}
}