-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathpackage.json
53 lines (53 loc) · 1.53 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
{
"name": "ag-psd",
"version": "23.1.1",
"description": "Library for reading and writing PSD files",
"main": "dist/index.js",
"module": "dist-es/index.js",
"es2015": "dist-es/index.js",
"browser": "dist/index.js",
"sideEffects": true,
"repository": {
"type": "git",
"url": "https://github.com/Agamnentzar/ag-psd"
},
"scripts": {
"ts": "npm run clean && tsc --watch --project tsconfig.json",
"test": "mocha --watch --timeout 50000 -R dot dist/test",
"lint": "tslint -c tslint.json src/ts/**/*.ts",
"build": "npm run clean && tsc --project tsconfig.json && tsc --project tsconfig-es6.json && browserify dist/index.js --standalone agPsd -o dist/bundle.js",
"rollup": "rollup --format=cjs --external base64-js --file=dist-es/bundle.js --sourcemap --sourcemapFile dist-es/bundle.js.map dist-es/index.js",
"clean": "node clean.js",
"prepublishOnly": "npm run build"
},
"jspm": {
"main": "dist/index.js",
"jspmNodeConversion": false,
"dependencies": {
"base64-js": "^1.3.1"
}
},
"keywords": [
"psd",
"photoshop"
],
"author": "Agamnentzar",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^18.11.18",
"@types/pako": "^2.0.3",
"browserify": "^17.0.0",
"canvas": "^2.11.0",
"chai": "^4.3.7",
"mocha": "^10.4.0",
"source-map-support": "^0.5.21",
"tslint": "^6.1.3",
"typescript": "^4.9.4"
},
"dependencies": {
"@types/base64-js": "^1.3.0",
"base64-js": "^1.5.1",
"pako": "^2.1.0"
}
}