-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 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
{
"name": "pixland",
"version": "0.1.3",
"description": "Library of Pixland for web apps",
"main": "dist/pixland.umd.js",
"module": "dist/pixland.esm.js",
"typings": "dist/types/index.d.ts",
"keywords": [
"typescript",
"lib"
],
"scripts": {
"watch": "rollup -c rollup.config.ts -w",
"build": "rimraf ./dist && tsc --module commonjs && rollup -c rollup.config.ts && rimraf ./dist/lib",
"release": "npm run build && npm publish --registry=\"https://registry.npmjs.org\""
},
"author": "BackRunner",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/crypto-js": "^4.1.1",
"@types/node": "^17.0.45",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint": "^8.23.0",
"eslint-config-alloy": "^4.6.2",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.78.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"tslib": "^2.4.0",
"typescript": "^4.8.2"
},
"dependencies": {
"axios": "^0.24.0",
"crypto-js": "^4.1.1",
"hash-wasm": "^4.9.0"
}
}