forked from scratchfoundation/scratch-paint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.07 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@evex-dev/scratch-paint",
"version": "0.1.2",
"type": "module",
"description": "Graphical User Interface for the Scratch 3.0 paint editor, which is used to make and edit sprites for use in projects.",
"exports": {
".": {
"default": "./dist/index.js",
"import": "./dist/index.js"
},
"./css": {
"default": "./dist/index.css"
}
},
"scripts": {
"build": "bun scripts/build.ts",
"clean": "rimraf ./dist && mkdirp dist && rimraf ./playground && mkdirp playground",
"i18n:push": "tx-push-src scratch-editor paint-editor ./translations/en.json",
"i18n:src": "rimraf ./translations/messages && babel src > tmp.js && rimraf tmp.js && ./scripts/build-i18n-source.js ./translations/messages/ ./translations/",
"lint": "eslint . --ext .js,.jsx",
"start": "webpack-dev-server",
"test": "npm run unit",
"unit": "jest --reporters=default",
"watch": "webpack --progress --colors --watch",
"dev": "bun run build && bun --watch scripts/dev-server.ts"
},
"author": "Massachusetts Institute of Technology",
"license": "AGPL-3.0-only",
"homepage": "https://github.com/scratchfoundation/scratch-paint#readme",
"repository": {
"type": "git",
"url": "https://github.com/scratchfoundation/scratch-paint.git"
},
"dependencies": {
"@radix-ui/react-popover": "^1.1.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-intl": "^7.0.4",
"react-intl-redux": "^2.4.1",
"react-redux": "^9.2.0",
"react-responsive": "^5",
"redux": "^5.0.1"
},
"devDependencies": {
"@scratch/paper": "^0.11.0",
"@types/bun": "^1.1.14",
"classnames": "^2.5.1",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.8",
"esbuild": "^0.24.0",
"hono": "^4.6.13",
"json": "9.0.6",
"keymirror": "^0.1.1",
"lightningcss": "^1.28.2",
"lodash.bindall": "^4.4.0",
"lodash.defaultsdeep": "4.6.1",
"lodash.omit": "^4.5.0",
"minilog": "^3.1.0",
"mkdirp": "1.0.4",
"parse-color": "^1.0.0",
"raf": "3.4.1",
"react-style-proptype": "3.2.2",
"react-test-renderer": "16.14.0",
"react-tiny-popover": "^8.1.4",
"react-tooltip": "4.5.1",
"redux-mock-store": "1.5.5",
"redux-throttle": "0.1.1",
"regenerator-runtime": "0.13.9",
"scratch-l10n": "5.0.33",
"scratch-render-fonts": "1.0.138",
"tap": "14.11.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"jest": {
"setupFiles": [
"raf/polyfill",
"<rootDir>/test/helpers/enzyme-setup.js"
],
"testURL": "http://localhost",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/test/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/test/__mocks__/styleMock.js"
}
},
"jest-junit": {
"outputDirectory": "./test/results"
},
"browserslist": [
"last 3 versions",
"Safari >= 8",
"iOS >= 8"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"files": [
"dist",
"LICENSE",
"TRADEMARK"
]
}