mirror of
				https://github.com/RetroDECK/ES-DE.git
				synced 2025-04-10 19:15:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			363 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			363 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ## NPM
 | |
| 
 | |
| # package.json {#package}
 | |
| 
 | |
| ~~~~~~~~~~js
 | |
| {
 | |
|   ...
 | |
|   "dependencies": {
 | |
|     ...
 | |
|     "rapidjson": "git@github.com:Tencent/rapidjson.git"
 | |
|   },
 | |
|   ...
 | |
|   "gypfile": true
 | |
| }
 | |
| ~~~~~~~~~~
 | |
| 
 | |
| # binding.gyp {#binding}
 | |
| 
 | |
| ~~~~~~~~~~js
 | |
| {
 | |
|   ...
 | |
|   'targets': [
 | |
|     {
 | |
|       ...
 | |
|       'include_dirs': [
 | |
|         '<!(node -e \'require("rapidjson")\')'
 | |
|       ]
 | |
|     }
 | |
|   ]
 | |
| }
 | |
| ~~~~~~~~~~
 | 
