├── .appcast.xml ├── .editorconfig ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.js ├── LICENSE ├── README.md ├── package.json ├── src └── sketch │ ├── app.ts │ ├── commands │ ├── index.ts │ └── pasteSketchJSON.ts │ ├── function │ ├── clipboard.ts │ └── find.ts │ └── manifest.js ├── static └── icons │ └── logo.png ├── tsconfig.json └── webpack.skpm.config.js /.appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinxx/sketch-json/HEAD/.appcast.xml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinxx/sketch-json/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@umijs/lint/dist/config/eslint'); 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinxx/sketch-json/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | lockfile=false 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinxx/sketch-json/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinxx/sketch-json/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinxx/sketch-json/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinxx/sketch-json/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinxx/sketch-json/HEAD/package.json -------------------------------------------------------------------------------- /src/sketch/app.ts: -------------------------------------------------------------------------------- 1 | export * from './commands'; 2 | -------------------------------------------------------------------------------- /src/sketch/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinxx/sketch-json/HEAD/src/sketch/commands/index.ts -------------------------------------------------------------------------------- /src/sketch/commands/pasteSketchJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinxx/sketch-json/HEAD/src/sketch/commands/pasteSketchJSON.ts -------------------------------------------------------------------------------- /src/sketch/function/clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinxx/sketch-json/HEAD/src/sketch/function/clipboard.ts -------------------------------------------------------------------------------- /src/sketch/function/find.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinxx/sketch-json/HEAD/src/sketch/function/find.ts -------------------------------------------------------------------------------- /src/sketch/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinxx/sketch-json/HEAD/src/sketch/manifest.js -------------------------------------------------------------------------------- /static/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinxx/sketch-json/HEAD/static/icons/logo.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinxx/sketch-json/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.skpm.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinxx/sketch-json/HEAD/webpack.skpm.config.js --------------------------------------------------------------------------------