-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.61 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
{
"name": "@arayutw/matrix-pointer",
"version": "0.0.1",
"description": "This is a library that assists in focusing on any position of a matrix and moving relative or absolute to that position.",
"keywords": [
"matrix",
"focus",
"pointer"
],
"homepage": "https://github.com/arayutw/matrix-pointer",
"repository": {
"type": "git",
"url": "git+https://github.com/arayutw/matrix-pointer.git"
},
"bugs": {
"url": "https://github.com/arayutw/matrix-pointer/issues"
},
"main": "dist/scripts/matrix-pointer.cjs.js",
"module": "dist/scripts/matrix-pointer.esm.js",
"scripts": {
"build": "node_modules/typescript/bin/tsc -d;node run/build.mjs",
"test": "node node_modules/jest/bin/jest"
},
"author": "Yuta Arai <[email protected]>",
"license": "MIT",
"dependencies": {
"@arayutw/emitter-import": "^0.0.2",
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.1.0",
"babel-loader": "^9.1.2",
"esbuild": "^0.17.10",
"jest": "^29.5.0",
"rollup": "^3.18.0",
"rollup-plugin-dts": "^5.2.0",
"rollup-plugin-esbuild": "^5.0.0",
"ts-jest": "^29.1.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"uglify-js": "^3.17.4"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/scripts/matrix-pointer.cjs.js",
"import": "./dist/scripts/matrix-pointer.esm.js",
"default": "./dist/scripts/matrix-pointer.esm.js"
}
},
"publishConfig": {
"access": "public"
}
}