You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.0 KiB
35 lines
1.0 KiB
{ |
|
"name": "matrix-react-sdk", |
|
"version": "0.0.1", |
|
"description": "SDK for matrix.org using React", |
|
"author": "matrix.org", |
|
"repository": { |
|
"type": "git", |
|
"url": "https://github.com/matrix-org/matrix-react-sdk" |
|
}, |
|
"license": "Apache-2.0", |
|
"main": "src/index.js", |
|
"style": "bundle.css", |
|
"scripts": { |
|
"build:js": "jsx skins/base/views/ build", |
|
"start:js": "jsx -w skins/base/views/ build --source-map-inline", |
|
"build:css": "catw 'skins/base/css/**/*.css' -o bundle.css -c uglifycss --no-watch", |
|
"start:css": "catw 'skins/base/css/**/*.css' -o bundle.css -v", |
|
"build": "npm run build:js && npm run build:css", |
|
"start": "parallelshell 'npm run start:js' 'npm run start:css'", |
|
"prepublish": "npm run build" |
|
}, |
|
"dependencies": { |
|
"classnames": "^2.1.2", |
|
"flux": "^2.0.3", |
|
"matrix-js-sdk": "0.1.1", |
|
"react": "^0.13.0", |
|
"react-loader": "^1.4.0" |
|
}, |
|
"devDependencies": { |
|
"catw": "^1.0.1", |
|
"parallelshell": "^1.1.1", |
|
"react-tools": "^0.13.3", |
|
"uglifycss": "0.0.15" |
|
} |
|
}
|
|
|