-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.17 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.17 KB
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
{
"name": "randpix",
"version": "1.1.1",
"description": "Fastest pixel avatar generator",
"files": [
"lib/**/*"
],
"types": "./lib/typings/index.d.ts",
"scripts": {
"build": "tsc && node build.js",
"prepare": "yarn build",
"version": "git add",
"postversion": "git push && git push --tags"
},
"exports": {
"import": "./lib/index.mjs",
"require": "./lib/index.cjs",
"default": "./lib/index.cjs"
},
"main": "./lib/index.cjs",
"module": "./lib/index.mjs",
"author": "LIMPIX31",
"repository": "https://github.com/LIMPIX31/randpix.git",
"bugs": {
"url": "https://github.com/LIMPIX31/randpix/issues"
},
"homepage": "https://github.com/LIMPIX31/randpix#readme",
"license": "MIT",
"keywords": [
"avatar",
"pixel",
"art",
"node",
"typescript",
"random",
"image",
"picture",
"generator"
],
"dependencies": {
"canvas": "^2.9.1",
"seedrandom": "^3.0.5"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@types/seedrandom": "^3.0.2",
"concurrently": "^7.1.0",
"esbuild": "^0.14.36",
"prettier": "^2.6.2",
"typescript": "^4.6.3",
"yarn": "^1.22.18"
}
}